home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Acorn User: China
/
Acorn User China CD-ROM (UK) (Disc B)
/
Acorn User China CD-ROM (UK) (Disc B).bin
/
STUTTGART
/
LANG
/
HUGS1
/
hs_random
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-02-14
|
306 b
|
12 lines
-- Generate a list of random numbers of length n
randoms :: Int -> [Int]
randoms = iterate (\seed-> (77*seed+1) `rem` 1024)
rand100 = sort (take 100 (randoms 1000)) -- a sample distribution
adjs [] = [] -- a list of pairs of adjacent
adjs xs = zip xs (tail xs) -- elements in a list